home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE16 / TIPTRIX / LISTING4.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-11-15  |  342 b   |  13 lines

  1. procedure TxDropFile.DefaultProc(var Message:TMessage);
  2. begin
  3.   with Message do
  4.     Result := CallWindowProc(FOldWndProc,
  5.       TForm(Owner).Handle, Msg, wParam, lParam);
  6. end;
  7.  
  8. procedure TxDropFile.FormWndProc(var Message:TMessage);
  9. begin
  10.   if Message.Msg = WM_DROPFILES thenwmDropFiles(Message)
  11.   elseDefaultProc(Message);
  12. end;
  13.